Is there any way to prevent origRGB being saved with "Separate render channels"? I just need the sequence with the Lens Effects applied.
Announcement
Collapse
No announcement yet.
prevent origRGB being saved?
Collapse
X
-
No, but here is a script with which you can. It saves only the EffectsResult channel:
Code:fn SaveEffectsResultOnly = ( startFrame = 0 endFrame = 50 for i = startFrame to endFrame do ( slidertime = i max quick render outputImg = @"C:\Users\Alexander\Desktop\effects\" + i as string + ".exr" vfbControl #setchannel (vfbControl #getchannel effectsresult)[1] vfbControl #saveimage outputImg ) ) try(SaveEffectsResultOnly())catch()
Comment